home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / telecomm / misc / dial.lha / dial.sbp < prev    next >
Encoding:
Text File  |  1992-09-02  |  508 b   |  17 lines

  1. REM dial.sbp for use with SuperBase's DML
  2. REM
  3. REM Dials phonenumbers using right speaker
  4. REM
  5. REM replace 'databasename' with the name of your database.
  6. REM PhoneNumber is the field with the phonenumber in it - if it is a string
  7. REM replace x$ = str$.... with x$=Phonenumber.databasename.
  8. REM
  9. REM 7 is the number of digits in the phone number. E.g 3415944.
  10.  
  11. x$ = STR$(Phonenumber.databasename,7,0)
  12. y$ = "CALL ~c:dial >NIL: <NIL: -nls1" + x$ + "~"
  13.  
  14. REM -nls1 = speed dial and no letter recognition
  15.  
  16. EXECUTE y$
  17.